:root{--main-color:#ffc807;}
a{COLOR: #333; text-decoration:none;}
a:hover{COLOR:#ffc807; text-decoration:none;}
/*banner背景图片动画*/
@-webkit-keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
@keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
.clear{ clear:both; display:block}
/*banner */
.home_tit{width:auto; height:auto; line-height:2rem; padding-bottom:2%; text-align:left;}
.home_tit dl{width:auto; float:left; color:#000;}
.home_tit dl dt{font-size:2.6rem; line-height:3rem; font-weight:bold;}
.home_tit dl dt span{color:#fff;}
.home_tit dl dd{font-size:1.8rem; line-height:4rem; font-family:Arial; text-transform:uppercase;}
.home_tit dl dd span{color:#fff;}
.home_tit .in-about-morewp{display:inline-block;width:130px;height:42px; float:right; margin-top:3%;}
@media screen and (max-width: 868px) { 
.home_tit{padding-bottom:8%;}
.home_tit dl dt{font-size:1.5rem; line-height:2rem;}
.home_tit dl dd{font-size:1.2rem; line-height:2.5rem;}
.home_tit .in-about-morewp{width:110px;margin-top:5%;}
}
.ban-btn {
  position: relative;
  padding: clamp(13px, 0.633vw, 13px) clamp(10px, 1.667vw, 10px);
  border-radius: 0;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1;
  font-size: clamp(15px, 0.8vw, 15px);
  line-height: 100%;
  letter-spacing: 0.32px;
  font-family:Arial;
  text-align: center;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}
.ban-btn{
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.5);
  width: 100%;
  border-radius:5px;
}
.ban-btn::before {
  content: "";
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(5deg);
  background: #ffc807;
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}
.ban-btn:hover {
  color:rgba(0,0,0,1);
  transition: all 0.5s ease-in-out;
  border: 1px solid #ffc807;
}
.ban-btn:hover::before {
  width: 105%;
}
.ban-btn:hover::after {
  transition: all 0.5s ease-in-out;
  filter: invert(1); /* This inverts the SVG color on hover */
}


.ban2-btn {
  position: relative;
  padding: clamp(13px, 0.633vw, 13px) clamp(10px, 1.667vw, 10px);
  border-radius: 0;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1;
  font-size: clamp(15px, 0.8vw, 15px);
  line-height: 100%;
  letter-spacing: 0.32px;
  font-family:Arial;
  text-align: center;
  color: #243076;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}
.ban2-btn{
  justify-content: center;
  border: 1px solid #ffc807;
  background:#ffc807;
  width: 100%;
  border-radius:5px;
}
.ban2-btn::before {
  content: "";
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(5deg);
  background: #fff;
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}
.ban2-btn:hover {
  color:#243076;
  transition: all 0.5s ease-in-out;
  border: 1px solid #fff;
}
.ban2-btn:hover::before {
  width: 105%;
}
.ban2-btn:hover::after {
  transition: all 0.5s ease-in-out;
  filter: invert(1); /* This inverts the SVG color on hover */
}
@media (max-width: 768px) {
.ban-btn {
  font-size:clamp(14px, 2.261vw, 14px);
  padding: 10px 12px;
}
.ban2-btn {
  font-size:clamp(14px, 2.261vw, 14px);
  padding: 10px 12px;
}
}

.index_main{
	background: #f7f7f7;
}
.index_main .section1{
	position: relative;
}
.index_main .section1 .index_banner .item{
	background-size: cover;
	-webkit-background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	height:100vh;
	position: relative;
}
.index_main .section1 .index_banner .item.slick-current .scaleBg{
	visibility: visible; 
	-webkit-animation:scale-bg 6s linear forwards;
	animation:scale-bg 6s linear forwards;
}
.index_main .section1 .index_banner .items{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.index_main .section1 .index_banner .items:after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0);
}
.index_main .section1 .index_banner .item .inner .block_txt{
	position: absolute;
	top: 44%;
	right: 10px;
	left:10px;
	opacity: 0; 
	transform: translateY(40px);
	-webkit-transform: translateY(40px); 
	-webkit-transition: all 500ms ease; 
	transition: all 500ms ease;
}
.index_main .section1 .index_banner .item.active .inner .block_txt{
	opacity: 1; 
	-webkit-transform: translateY(0); 
	transform: translateY(0); 
	-webkit-transition-delay: 100ms; 
	transition-delay: 100ms;
}
.index_main .section1 .index_banner .item .inner .block_txt h4{
	font-size: 30px;
	color: #fff;
	text-align: center;
	font-family: 'COCO';
}
.index_main .section1 .index_banner .item .inner .block_txt h2{
	color: #fff;
	font-size: 70px;
	font-weight: bold;
	text-align:center;
	letter-spacing:5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h2 span{
	color: #f5c920;
	display: inline-block;
	letter-spacing: 5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h3{
	color: #fff;
	font-size: 22px;
	text-align:center;
	margin-top: 10px;
	letter-spacing: 3px;
}
.index_main .section1 .slick_txt{
	width:30%;
	height: 100%;
	background-color: transparent;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease; 
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	font-size: 0;
	outline: none;
	border:0;
}
.index_main .section1 .left{
	left: 0;
}
.index_main .section1 .right{
	right:0;
}
.index_main .section1 .slick_txt:hover .slick_arrow{
	opacity: 1;
	visibility: visible;
}
.index_main .section1 .slick_txt .slick_arrow{
	width: 20px;
	height: 36px;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: -18px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
	opacity: 0;
	visibility: hidden;
}
.index_main .section1 .slick_txt .prev{
	background-image:url(../image/ban_prev.png);
	left:60px;
}
.index_main .section1 .slick_txt .next{
	background-image:url(../image/ban_next.png);
	right:60px;
}
.index_main .section1 .slick_txt .prev:hover{
	background-image:url(../image/ban_prev_hover.png);
}
.index_main .section1 .slick_txt .next:hover{
	background-image:url(../image/ban_next_hover.png);
}
.index_main .section1 .number{
	position: absolute;
	bottom:180px;
	left: 50%;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	display: table;
	padding: 0 20px;
	width: auto;
	text-align: center;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
.index_main .section1 .number span{
	font-family:Arial;
	font-size:20px;
	color: #fff;
	font-weight:bold;
	margin-right:80px;
	display: inline-block;
	cursor: pointer;
	position: relative;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
}
.index_main .section1 .number span:last-child{
	margin-right: 0;
}
.index_main .section1 .number span:after{
	content: "";
	display: inline-block;
	width: 0;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	bottom:-20px;
	opacity: 0;
	visibility: hidden;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
}
.index_main .section1 .number span.active:after{
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.index_main .section2{
	background:url(../../images/enboback_02.jpg) center no-repeat;
	background-size:cover;
}
.index_main .section2 .teacher_team{width:100%;height:auto; background:url(../../images/tech_01.png) left bottom 8px no-repeat;}
.index_main .section2 .teacher_team .teacherlist{width:20%;height:auto; margin:8px; float:right; position:relative; overflow:hidden;}
.index_main .section2 .teacher_team .teacherlist img{width:100%;max-height:300px;height:100%;object-fit:cover;object-position: 0px 0px;transition: all 0.1s;z-index:1;}
.index_main .section2 .teacher_team .teacherlist .img_mask{width:100%; height:0px; bottom:0px;padding:0 10%; color:#fff; background:rgba(36,48,118,0.7); overflow:hidden; position:absolute; transition:all ease-in-out .5s; z-index:2;}
.index_main .section2 .teacher_team .teacherlist:hover .img_mask{width:100%; height:300px;padding:15% 10%; font-size:15px; text-align:left;}
.index_main .section2 .teacher_team .teacherlist:hover .img_mask p:nth-child(1){font-size:18px; line-height:2.5rem; font-weight:bold;}
.index_main .section2 .teacher_team .teachertit{width:50%;height:auto; float:left; position:relative; overflow:hidden; padding-top:3%;}
.index_main .section2 .teacher_team .teachertit p:nth-child(1){font-size:3rem; line-height:5rem; color:#000; font-weight:bold;}
.index_main .section2 .teacher_team .teachertit p:nth-child(2){font-size:1.5rem; line-height:3rem; color:#858585; text-transform:uppercase; font-family:Arial;}
.index_main .section2 .teacher_team .teachertit p:nth-child(3){width:200px; height:2px; background:#b2b2b2;}
.index_main .section2 .teacher_team .teachertit p:nth-child(4){font-size:1.2rem; line-height:2rem; color:rgba(0,0,0,0.6); margin-top:1rem;}
.index_main .section3{width: 100%;height: 100%;background:#fff;}
.index_main .section3 .homeys{width:100%; height:auto;}
.index_main .section3 .homeys .ys_tab_top{width:20%; height:65vh; float:right; margin-top:17vh; right:9%; position:absolute; z-index:2; border:1px solid rgba(255,255,255,0.5); border-radius:3px;backdrop-filter: blur(8px); /* 应用模糊效果 */}
.index_main .section3 .homeys .ys_tab_top UL{width:100%; list-style-type:none; text-align:left;}
.index_main .section3 .homeys .ys_tab_top UL LI{width:95%; height:auto; float:left; background:rgba(0,0,0,0.2); transition:all ease-in-out .5s; position:relative;overflow:hidden; margin-bottom:15px;}
.index_main .section3 .homeys .ys_tab_top UL LI .li_txt{width:100%; height:100%; bottom:0px;padding:3% 10%; color:#fff;font-weight:bold; background:rgba(0,0,0,0.2); overflow:hidden; position:absolute; transition:all ease-in-out .5s; z-index:2;}
.index_main .section3 .homeys .ys_tab_top UL LI .li_txt .p1{font-size:1.2rem; line-height:2rem;}
.index_main .section3 .homeys .ys_tab_top UL LI .li_txt .p2{font-size:0.9rem; line-height:1rem; width:100%; font-family:Arial; text-transform:uppercase;}
.index_main .section3 .homeys .ys_tab_top UL LI .li_txt .p3{font-size:1.6rem; line-height:2.5rem; width:100%; font-family:Arial;}
.index_main .section3 .homeys .ys_tab_top UL LI img{width:100%; height:auto; z-index:1;}
.index_main .section3 .homeys .ys_tab_top UL LI.hover{width:95%; height:auto; float:left; background:rgba(0,0,0,0.2); transition:all ease-in-out .5s; position:relative;overflow:hidden; margin-bottom:15px;}
.index_main .section3 .homeys .ys_tab_top UL LI.hover .li_txt{width:100%; height:100%; bottom:0px;padding:3% 10%; background:rgba(36,48,118,0.3); overflow:hidden; position:absolute; transition:all ease-in-out .5s; z-index:2;color:#ffc807;}
.index_main .section3 .homeys .ys_tab_bottom{display:inline; width:100%; float:left; position:relative; background:#000;}
.index_main .section3 .homeys .ys_tab_bottom .hover{position:relative; z-index:1;width:100%;max-height:100vh;height:100vh;object-fit:cover;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl{width:100%; padding-top:25vh; color:#fff;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl dt:nth-child(1){font-size:3.5rem; text-transform:uppercase; font-family:Arial; font-weight:bold;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl dt:nth-child(2){font-size:1.7rem;font-weight:normal;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl dt:nth-child(3){font-size:1.2rem; line-height:2.3rem; font-weight:normal; padding-top:2rem;font-family:Arial;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl dd{padding-top:5%;}

.custom{ width:100%; height:61vh; margin:2vh 0;}
.custom-scroll {
    height:100%;
	width:98%;
    overflow-y: scroll;
    padding:0 0 0 5%;
  }
/* 整个滚动条 */
  .custom-scroll::-webkit-scrollbar {width:6px;}
/* 滚动条轨道 */
  .custom-scroll::-webkit-scrollbar-track { 
    background:rgba(0,0,0,0.1);
  }
/* 滚动条滑块 */
  .custom-scroll::-webkit-scrollbar-thumb {
    background: #ffc807;
    border-radius: 6px;
  }
  .custom-scroll:hover::-webkit-scrollbar-thumb{
	display: block;
  }
/* 滚动条按钮 */
  .custom-scroll::-webkit-scrollbar-button {
    display:none;
  }
/* 内层轨道 */
  .custom-scroll::-webkit-scrollbar-track-piece {
    background: #e6e6e6;
  }
/* 边角 */
  .custom-scroll::-webkit-scrollbar-corner {
   display:none;
  }


@media screen and (max-width: 1750.98px) {
.index_main .section3 .homeys .ys_tab_top{right:5%;}
}
@media screen and (max-width: 992px) { 
.index_main .section3 .homeys .ys_tab_top{width:70%; float:left; right:16%; bottom:15vh; height:45vh;}
.custom{height:41vh;}
.custom-scroll::-webkit-scrollbar {width:8px;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl{padding-top:10vh;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl dt:nth-child(1){font-size:1.8rem;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl dt:nth-child(2){font-size:1.3rem;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl dt:nth-child(3){font-size:1rem; line-height:1.5rem; padding-top:0.5rem;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl dt:nth-child(3) p{margin-bottom:0;}
.index_main .section3 .homeys .ys_tab_bottom .hover dl dd{padding-top:3%;}
} 
@media screen and (max-width: 768px) { 
.index_main .section3 .homeys .ys_tab_top UL LI .li_txt{width:auto;}
.index_main .section3 .homeys .ys_tab_top UL LI .li_txt .p1{font-size:16px;}
.index_main .section3 .homeys .ys_tab_top UL LI .li_txt .p2{line-height:15px;}
.index_main .section3 .homeys .ys_tab_top UL LI .li_txt .p3{font-size:20px; line-height:30px;}
} 

.index_main .section4{
	background: url(../../images/enboback_04.jpg) center no-repeat;
	background-size:cover;
}
.index_by{overflow:hidden; width:100%;}
.index_by .con{padding-top:0px;}
.index_by .swiper-container3{padding-bottom:4rem;position:relative;}
.index_by .swiper-container3 .swiper-slide{opacity:1;cursor:pointer;}
.index_by .swiper-container3 .swiper-slide .by_img{position:relative;overflow:hidden; width:100%; float:left;}
.index_by .swiper-container3 .swiper-slide .by_img .by_list{position:relative;overflow:hidden; width:100%; float:left;z-index:1;}
.index_by .swiper-container3 .swiper-slide .by_img .by_list i{position:absolute;z-index:1;width:100%;height:100%;left:0;top:0;background-size:cover;background-position:center;-webkit-transition:.4s;-o-transition:.4s;transition:.4s;}
.index_by .swiper-container3 .swiper-slide .by_img .by_list .img_mask{position:absolute;z-index:2;width:100%; height:0px; bottom:0px;left:0;padding:0 10%; color:#fff; background:rgba(36,48,118,0.5); overflow:hidden;background-size:cover;background-position:center;-webkit-transition:.4s;-o-transition:.4s;transition:.4s; text-align:center;}
.index_by .swiper-container3 .swiper-slide .by_img .by_list .img_mask img{width:130px; margin-top:2rem;}
.index_by .swiper-container3 .swiper-slide .by_img .by_list .img_mask p{width:130px; line-height:2.4rem; background:#ffc807; color:#fff; margin:auto; font-size:14px;}
.index_by .swiper-container3 .swiper-slide:hover .by_img .by_list .img_mask{width:100%; height:100%;}
.index_by .swiper-container3 .swiper-slide .by_img .by_list img{width:100%;}
.index_by .swiper-container3 .swiper-slide:hover .by_img .by_list i{transform: scale(1.1);}
.index_by .swiper-container3 .swiper-slide .by_img .by_tit{position:relative;overflow:hidden; width:90%; float:left; padding:1.1rem 0; background:#fff; margin:0 5%; text-align:center;font-size:1rem; color:#000; line-height:25px;-webkit-transition:.4s;-o-transition:.4s;transition:.4s; margin-top:-20px; z-index:2;}
.index_by .swiper-container3 .swiper-slide .by_img .by_tit span{font-size:0.95rem; color:rgba(0,0,0,0.8);-webkit-transition:.4s;-o-transition:.4s;transition:.4s;}
.index_by .swiper-container3 .swiper-slide:hover .by_img .by_tit{background:#ffc807; color:#fff;}
.index_by .swiper-container3 .swiper-slide:hover .by_img .by_tit span{color:#fff;}

.index_by .swiper-container3 .swiper-slide-active{opacity:1;}
.index_by .btn{position:absolute;height:64px;left:0;right:0;top:calc(50% - 25px);z-index:1;pointer-events:none;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}
.index_by .btn .btn_{width:45px;height:50px;background:#FFFFFF;border-radius:0px 0px 0px 0px;pointer-events:auto;cursor:pointer;background-image:url(../../images/more_gray.svg);background-position:center;background-repeat:no-repeat;background-size:24px;}
.index_by .btn .btn_:hover{background-color:var(--main-color);background-image:url(../../images/more_white.svg);}
.index_by .btn .btn_.prev{float:left;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}
.index_by .btn .btn_.next{float:right;}
.index_by .swiper-pagination{bottom:0;}
.index_by .swiper-pagination-bullet{width:10px;height:10px;background:#CCCCCC;border-radius:10px;opacity:1;}
.index_by .swiper-pagination-bullet-active{background-color:var(--main-color);}

@media(max-width:768px){
.index_by{padding:0 0 30px 0;}
.index_by .swiper-container3 .swiper-slide .by_img{width:100%;}
.index_by .swiper-container3 .swiper-slide .by_img .by_tit p{font-size:13px; line-height:25px;}
.index_by .swiper-container3 .swiper-slide .by_img .by_list .img_mask img{margin-top:1.5rem;}
.index_by .swiper-container3 .swiper-slide .by_img .by_tit{padding:0.8rem 0;}
.index_by .btn .btn_{width:35px;height:35px;background-size:20px;}
.index_by .btn{top:50%;}
}

.index_main .section5{background: url(../../images/enboback_05.jpg) center no-repeat;background-size:cover;}
.index_honor{overflow:hidden; width:100%;}
.index_honor .con{padding-top:2rem;}
.index_honor .swiper-container4{padding-bottom:4rem;position:relative;}
.index_honor .swiper-container4 .swiper-slide{opacity:1;cursor:pointer;}
.index_honor .swiper-container4 .swiper-slide .honor_img{position:relative;overflow:hidden; width:100%; float:left;}
.index_honor .swiper-container4 .swiper-slide .honor_img .honor_list{position:relative;overflow:hidden; width:100%; float:left;z-index:1;}
.index_honor .swiper-container4 .swiper-slide .honor_img .honor_list i{position:absolute;z-index:1;width:100%;height:100%;left:0;top:0;background-size:cover;background-position:center;-webkit-transition:.4s;-o-transition:.4s;transition:.4s;}
.index_honor .swiper-container4 .swiper-slide .honor_img .honor_list img{width:100%;}
.index_honor .swiper-container4 .swiper-slide:hover .honor_img .honor_list i{transform: scale(1.1);}
.index_honor .swiper-container4 .swiper-slide .honor_img .honor_tit{position:relative;overflow:hidden; width:100%; float:left; padding:1.1rem 10%; background:#fff; text-align:center;font-size:1rem; color:rgba(0,0,0,0.7); line-height:1.6rem;-webkit-transition:.4s;-o-transition:.4s;transition:.4s; z-index:2;}
.index_honor .swiper-container4 .swiper-slide .honor_img .honor_tit span{font-size:0.95rem; color:rgba(0,0,0,0.8);-webkit-transition:.4s;-o-transition:.4s;transition:.4s;}
.index_honor .swiper-container4 .swiper-slide:hover .honor_img .honor_tit{background:#ffc807; color:#fff;}
.index_honor .swiper-container4 .swiper-slide:hover .honor_img .honor_tit span{color:#fff;}

.index_honor .swiper-container4 .swiper-slide-active{opacity:1;}
.index_honor .btn{position:absolute;height:64px;left:0;right:0;top:calc(50% - 25px);z-index:1;pointer-events:none;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}
.index_honor .btn .btn_{width:45px;height:50px;background:#FFFFFF;border-radius:0px 0px 0px 0px;pointer-events:auto;cursor:pointer;background-image:url(../../images/more_gray.svg);background-position:center;background-repeat:no-repeat;background-size:24px;}
.index_honor .btn .btn_:hover{background-color:var(--main-color);background-image:url(../../images/more_white.svg);}
.index_honor .btn .btn_.prev{float:left;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}
.index_honor .btn .btn_.next{float:right;}
.index_honor .swiper-pagination{bottom:0;}
.index_honor .swiper-pagination-bullet{width:10px;height:10px;background:#CCCCCC;border-radius:10px;opacity:1;}
.index_honor .swiper-pagination-bullet-active{background-color:var(--main-color);}

@media(max-width:768px){
.index_honor{padding:0 0 30px 0;}
.index_honor .con{padding-top:0px;}
.index_honor .swiper-container4 .swiper-slide .honor_img{width:100%;}
.index_honor .swiper-container4 .swiper-slide .honor_img .honor_tit p{font-size:13px; line-height:25px;}
.index_honor .swiper-container4 .swiper-slide .honor_img .honor_tit{padding:0.8rem 0;}
.index_honor .btn .btn_{width:35px;height:35px;background-size:20px;}
.index_honor .btn{top:50%;}
}

.index_main .section6{background: url(../../images/enboback_06.jpg) center no-repeat;background-size:cover;}
.con_left{width:calc(28% - 35px); height:auto; float:left;}
.con_left .case-slide{opacity:1;cursor:pointer; margin-top:2.6vw;}
.con_left .case-slide .case_img{position:relative;overflow:hidden; width:100%; float:left;}
.con_left .case-slide .case_img .case_list{position:relative;overflow:hidden; width:100%; float:left;z-index:1; border-radius:20px;}
.con_left .case-slide .case_img .case_list i{position:absolute;z-index:1;width:100%;height:100%;left:0;top:0;background-size:cover;background-position:center;-webkit-transition:.4s;-o-transition:.4s;transition:.4s;}
.con_left .case-slide .case_img .case_list .img_mask{position:absolute;z-index:2;width:100%; height:0px; bottom:0px;left:0;padding:0 10%; color:#fff; background:rgba(36,48,118,0.5); overflow:hidden;background-size:cover;background-position:center;-webkit-transition:.4s;-o-transition:.4s;transition:.4s; text-align:center;}
.con_left .case-slide .case_img .case_list .img_mask img{width:130px; margin-top:2rem;}
.con_left .case-slide .case_img .case_list .img_mask p{width:130px; line-height:2.4rem; background:#ffc807; color:#fff; margin:auto; font-size:14px;}
.con_left .case-slide:hover .case_img .case_list .img_mask{width:100%; height:100%;}
.con_left .case-slide .case_img .case_list img{width:100%;}
.con_left .case-slide:hover .case_img .case_list i{transform: scale(1.1);}
.con_left .case-slide .case_img .case_tit{position:absolute;overflow:hidden; width:80%; float:left; padding:1.5rem 0; margin:0 10%; text-align:right;font-size:1.5rem; color:#fff; line-height:2rem;-webkit-transition:.4s;-o-transition:.4s;transition:.4s; bottom:0px; z-index:2; text-transform:uppercase; font-family:Arial;}
.con_left .case-slide .case_img .case_tit span{font-size:1.2rem;}
.con_left .case-slide:hover .case_img .case_tit{color:#ffc807;}

.con_right{width:72%; height:auto; float:right;}
.index_case{overflow:hidden; width:100%; height:auto;}
.index_case .con{width:100%; height:auto;}
.index_case .swiper-container2{padding-bottom:4rem;position:relative;}
.index_case .swiper-container2 .swiper-slide{opacity:1;cursor:pointer;}
.index_case .swiper-container2 .swiper-slide .case_img{position:relative;overflow:hidden; width:100%; float:left;}
.index_case .swiper-container2 .swiper-slide .case_img .case_list{position:relative;overflow:hidden; width:100%; float:left;z-index:1; border-radius:20px;}
.index_case .swiper-container2 .swiper-slide .case_img .case_list i{position:absolute;z-index:1;width:100%;height:100%;left:0;top:0;background-size:cover;background-position:center;-webkit-transition:.4s;-o-transition:.4s;transition:.4s;}
.index_case .swiper-container2 .swiper-slide .case_img .case_list .img_mask{position:absolute;z-index:2;width:100%; height:0px; bottom:0px;left:0;padding:0 10%; color:#fff; background:rgba(36,48,118,0.5); overflow:hidden;background-size:cover;background-position:center;-webkit-transition:.4s;-o-transition:.4s;transition:.4s; text-align:center;}
.index_case .swiper-container2 .swiper-slide .case_img .case_list .img_mask img{width:130px; margin-top:2rem;}
.index_case .swiper-container2 .swiper-slide .case_img .case_list .img_mask p{width:130px; line-height:2.4rem; background:#ffc807; color:#fff; margin:auto; font-size:14px;}
.index_case .swiper-container2 .swiper-slide:hover .case_img .case_list .img_mask{width:100%; height:100%;}
.index_case .swiper-container2 .swiper-slide .case_img .case_list img{width:100%;}
.index_case .swiper-container2 .swiper-slide:hover .case_img .case_list i{transform: scale(1.1);}
.index_case .swiper-container2 .swiper-slide .case_img .case_tit{position:absolute;overflow:hidden; width:80%; float:left; padding:1.5rem 0; margin:0 10%; text-align:right;font-size:1.5rem; color:#fff; line-height:2rem;-webkit-transition:.4s;-o-transition:.4s;transition:.4s; bottom:0px; z-index:2; text-transform:uppercase; font-family:Arial;}
.index_case .swiper-container2 .swiper-slide .case_img .case_tit span{font-size:1.2rem;}
.index_case .swiper-container2 .swiper-slide:hover .case_img .case_tit{color:#ffc807;}

.index_case .swiper-container2 .swiper-slide-active{opacity:1;}
.index_case .btn{position:absolute;height:64px;left:0;right:0;top:calc(50% - 25px);z-index:1;pointer-events:none;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}
.index_case .btn .btn_{width:45px;height:50px;background:#FFFFFF;border-radius:0px 0px 0px 0px;pointer-events:auto;cursor:pointer;background-image:url(../../images/more_gray.svg);background-position:center;background-repeat:no-repeat;background-size:24px;}
.index_case .btn .btn_:hover{background-color:var(--main-color);background-image:url(../../images/more_white.svg);}
.index_case .btn .btn_.prev{float:left;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}
.index_case .btn .btn_.next{float:right;}
.index_case .swiper-pagination{bottom:0;}
.index_case .swiper-pagination-bullet{width:10px;height:10px;background:#CCCCCC;border-radius:10px;opacity:1;}
.index_case .swiper-pagination-bullet-active{background-color:var(--main-color);}

@media(max-width:1570px){
.con_left .case-slide{margin-top:1.5vw;}
}
@media(max-width:1370px){
.con_left .case-slide{margin-top:0vw;}
}
@media(max-width:1200px){
.con_left{width:calc(38% - 35px);}
.con_right{width:62%;}
}
@media(max-width:768px){
.con_left{width:100%; margin-bottom:10px;}
.con_right{width:100%;}
.con_left .case-slide .case_img .case_tit{font-size:1.2rem;line-height:1.5rem;}
.index_case .swiper-container2 .swiper-slide .case_img .case_tit{font-size:1.2rem;line-height:1.5rem;}
.index_case .swiper-pagination{bottom:25px;}
}
.index_main .section7{
	background: url(../../images/news_back.jpg) left top no-repeat;
	background-size:36%;
}

/*首页新闻中心*/
.in-news-wp{width:100%;}
.news_tabn_top{float:left; width:30%; height:100vh; position:relative;}
.news_tabn_top UL{width:100%; list-style-type: none; float:left; position:absolute; bottom:120px;}
.news_tabn_top UL LI{display:inline; float:left; width:31%; cursor:pointer; line-height:1.5rem; padding:2rem 0; color:rgba(0,0,0,0.8); border-right:1px solid rgba(0,0,0,0.1); text-align:center; background:#fff;}
.news_tabn_top UL LI p:nth-child(1){font-size:1.1rem;}
.news_tabn_top UL LI p:nth-child(2){font-size:0.9rem; font-family:Arial;}
.news_tabn_top UL LI.hover{display:inline; float:left; width:31%; cursor:pointer; line-height:1.5rem; padding:2rem 0; color:#fff;border-right:1px solid rgba(0,0,0,0.1); text-align:center; background:#243076;}
.news_tabn_top UL LI.hover p:nth-child(1){font-size:1.1rem;}
.news_tabn_top UL LI.hover p:nth-child(2){font-size:0.9rem; font-family:Arial;}
.news_tabn_bottom{float:right; width:60%; height:auto; padding-top:8%;}


.news_tabn_bottom .news_left{width:100%; height:auto;}
.news_tabn_bottom .news_left .news_left_list{width:100%; height:auto; float:left; padding:2rem 0 0.5rem 0; position:relative; transition:.5s;}
.news_tabn_bottom .news_left .news_left_list p:nth-child(1){color:rgba(0,0,0,1); font-size:1.2rem;font-family:Arial; font-weight:bold;}
.news_tabn_bottom .news_left .news_left_list p:nth-child(2){color:rgba(0,0,0,1); font-size:1.3rem; font-weight:bold;}
.news_tabn_bottom .news_left .news_left_list p:nth-child(3){color:rgba(0,0,0,0.6); font-size:1rem; line-height:1.8rem; padding:1.5% 0 0.8% 0;}
.news_tabn_bottom .news_left .news_left_list p:nth-child(4){color:rgba(0,0,0,1); font-size:15px; font-family:Arial; font-weight:bold; padding-top:1%;}
.news_tabn_bottom .news_left .news_left_list:after{ content:""; display:block; width:120px; height:2px; position:absolute; left:0; background:#000; bottom:0px; transition:.5s; z-index:1; }
.news_tabn_bottom .news_left .news_left_list:hover:after{width:100%;}
.news_tabn_bottom .news_left .news_left_list:hover p:nth-child(4){color:#243076;}
@media screen and (max-width: 1280px) { 
.news_tabn_top{width:35%;}
}
@media screen and (max-width: 1100px) { 
.news_tabn_top{width:38%;}
}
@media screen and (max-width: 992px) { 
.index_main .section7{
background: none;
	background-size:100%;
}
.news_tabn_top{width:100%; height:10vh;}
.news_tabn_top UL{bottom:0px;}
.news_tabn_top UL LI{width:32%; line-height:1.4rem; padding:1rem 0;}
.news_tabn_top UL LI p:nth-child(1){font-size:1rem;}
.news_tabn_top UL LI p:nth-child(2){font-size:0.85rem;}
.news_tabn_top UL LI.hover{width:32%; line-height:1.4rem; padding:1rem 0;}
.news_tabn_top UL LI.hover p:nth-child(1){font-size:1.1rem;}
.news_tabn_top UL LI.hover p:nth-child(2){font-size:0.85rem;}
.news_tabn_bottom{width:100%; padding-top:2%; padding-bottom:5rem;}

}
@media screen and (max-width: 768px) { 
.news_tabn_bottom .news_left .news_left_list{padding:1rem 0 0.5rem 0;}
.news_tabn_bottom .news_left .news_left_list p:nth-child(1){font-size:1rem;}
.news_tabn_bottom .news_left .news_left_list p:nth-child(2){font-size:1rem;}
.news_tabn_bottom .news_left .news_left_list p:nth-child(3){font-size:0.9rem; line-height:1.6rem; padding:1.5% 0 0.8% 0; height:60px; overflow:hidden;}
.news_tabn_bottom .news_left .news_left_list p:nth-child(4){font-size:15px; padding-top:1%;}
} 

.index_main .section8{
	background: url(../../images/enboback_08.jpg) center no-repeat;
	background-size:cover;
}
.bottom-bg{width:100%; height:auto; color:#fff;}
.bottom-bg .bttm-logo{width:50%; height:auto; float:left; font-size:1.1rem;}
.bottom-bg .bttm-logo p:nth-child(1){font-size:3rem; line-height:3.5rem; font-weight:bold; font-family:Arial, Helvetica, sans-serif;background:linear-gradient(to right, #ffc807, #fff, #fff, #fff);-webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.bottom-bg .bttm-logo p:nth-child(2){font-size:1.1rem; padding:2.5rem 0 3rem 0;}
.bottom-bg .bttm-logo .logo_txt img{margin-right:20px;}
.bottom-bg .bttm-list{width:50%; height:auto; float:right; font-size:1.1rem; text-align:right;}
.bottom-bg .bttm-list p:nth-child(1){font-size:2rem; line-height:3rem; font-weight:bold; font-family:Arial, Helvetica, sans-serif;}
.bottom-bg .bttm-list p:nth-child(2){padding:1rem 0 4rem 0;}
.bttm-link{width:100%; height:auto; color:rgba(255,255,255,0.5); font-size:0.95rem; line-height:1.5rem; padding:2rem 0; border-top:1px solid rgba(255,255,255,0.2); margin-top:10%;}
.bttm-link a{color:rgba(255,255,255,0.5);}
.bttm-link a:hover{color:#ffc807;}
.bttm-link span{float:right;}
@media screen and (max-width: 768px) { 
.bottom-bg .bttm-logo{width:100%;}
.bottom-bg .bttm-logo p:nth-child(1){font-size:2rem; line-height:2.5rem;}
.bottom-bg .bttm-logo p:nth-child(2){font-size:1rem; line-height:2rem; padding:1rem 0;}
.bottom-bg .bttm-list{width:100%;font-size:0.95rem; text-align:left; margin-top:2rem;}
.bottom-bg .bttm-list p:nth-child(1){font-size:1.5rem; line-height:3rem;}
.bottom-bg .bttm-list p:nth-child(2){padding:0.5rem 0 2rem 0;}
.bottom-bg .bttm-list p:nth-child(3) img{max-width:100%;}
.bttm-link{font-size:0.95rem; line-height:1.5rem; padding:2rem 0;}
}


@media only screen and (max-width: 1600px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 28px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 60px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 20px;
	}
}
@media only screen and (max-width: 1440px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 24px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 40px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 18px;
		margin-top: 5px;
	}
}
@media only screen and (max-width: 1366px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 20px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 26px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 16px;
	}
	.index_main .section1 .index_banner .slick-arrow{
		background-size: auto 30px;
	}
}
@media only screen and (max-width: 1300px){

}
@media only screen and (max-width: 1199px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 18px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 22px;
		}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 14px;
	}
}
@media only screen and (max-width: 992px){
	.index_main .section1 .index_banner .item{
		height: 100vh;
	}
	.index_main .section1 .index_banner .item .inner .block_txt{
		left: 0;
		right:0;
		margin: 0 auto;
		padding: 0 20px;
		top: 42%;
	}
	.index_main .section1 .index_banner .slick-arrow{
		display: none !important;
	}
    .index_main .section1 .index_banner .slick-dots{
    	position: absolute;
    	bottom:140px;
    }
    .index_main .section1 .index_banner .slick-dots li{
    	width: 12px;
    	height: 12px;
    	border-radius: 50%;
    	border:2px solid #fff;
    }
    .index_main .section1 .index_banner .slick-dots li button{
    	display: none;
    }
    .index_main .section1 .index_banner .slick-dots li.slick-active{
    	background: #fff;
    }
	.index_main .section1 .number{
		bottom: 12%;
		display: none;
	}
	.index_main .section1 .number span{
		margin-right: 22px;
	}
	.index_main .section1 .number span:after{
		bottom: -14px;
	}
.index_main .section2 .teacher_team .teachertit p:nth-child(1){font-size:2rem; line-height:2.8rem;}
.index_main .section2 .teacher_team .teachertit p:nth-child(2){font-size:1.2rem; line-height:2.3rem;}
.index_main .section2 .teacher_team .teachertit p:nth-child(4){font-size:1rem; line-height:1.6rem;}

}
@media only screen and (max-width: 768px){
.index_main .section2 .teacher_team .teacherlist{width:47%; margin:5px;}
.index_main .section2 .teacher_team .teacherlist img{max-height:170px;}
.index_main .section2 .teacher_team .teacherlist:hover .img_mask{height:170px;}
.index_main .section2 .teacher_team .teachertit{width:100%;padding-top:8%;}
.index_main .section2 .teacher_team .teachertit p:nth-child(1){font-size:1.5rem; line-height:2rem;}
.index_main .section2 .teacher_team .teachertit p:nth-child(2){font-size:1.2rem; line-height:2.3rem;}
.index_main .section2 .teacher_team .teachertit p:nth-child(3){width:100%; height:1px;}
.index_main .section2 .teacher_team .teachertit p:nth-child(4){font-size:1rem; line-height:1.6rem;}


}
@media only screen and (max-width: 340px){
 
}
@media only screen and (max-width: 320px){
	
}